* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ========INTERIOR DESIGN PAGE CUSTOM CSS ============= */

.interiorDesign-hero {
    min-height: 40vh;
    background: url("../../assets/home page image/Hero section Image.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.interiorDesign-hero-left {
    max-width: 65%;
}

.interiorDesign-hero-left h1 {
    font-size: 42px;
    color: #ffd966;
    font-weight: 700;
}

.interiorDesign-hero-left h2 {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 500;
}

.interior-hero {
    padding: 60px 20px;
    text-align: center;
    background: #fdfdfd;
}

.interior-hero-content h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
}

.interior-hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.interior-page {
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.interior-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.interior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.interior-type-card {
    background: #ffffff;
    border: 1px solid #ff9800;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.interior-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.15);
}

.interior-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.interior-card-text {
    padding: 30px;
}

.interior-card-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.interior-features-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.interior-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #444;
}

.interior-features-list i {
    color: #ff9800;
    margin-right: 12px;
    font-size: 1.3rem;
}

.interior-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #222;
    text-transform: uppercase;
}

.interior-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.interior-feat-item {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-bottom: 4px solid #ff9800;
    border-radius: 12px;
    transition: 0.3s;
}

.interior-feat-item i {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 20px;
}

.interior-workflow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.interior-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #ff9800; /* Standard 1px Border */
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.interior-step:hover {
    transform: translateY(-6px);
    background-color: #fffaf2;
}

.interior-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(18, 12, 5, 0.3);
    display: block;
    margin-bottom: 15px;
}

.interior-step:hover .interior-step-num {
    color: #ff9800;
}

/* ============= MOBILE RESPONSIVE CSS ============ */

@media (max-width: 992px) {
    .interior-grid {
        grid-template-columns: 1fr;
    }
    .interiorDesign-hero-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .interiorDesign-hero {
        padding: 40px 20px;
        text-align: center;
        min-height: auto;
    }
    
    .interiorDesign-hero-left h1 {
        font-size: 30px;
    }
    
    .interiorDesign-hero-left h2 {
        font-size: 22px;
    }

    .interior-hero-content h1 {
        font-size: 1.8rem;
    }

    .interior-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .interior-container {
        padding: 40px 15px;
    }
    
    .interiorDesign-hero-left h1 {
        font-size: 26px;
    }

    .interior-card-img img {
        height: 200px;
    }
}